home *** CD-ROM | disk | FTP | other *** search
/ ftp.mactech.com 2010 / ftp.mactech.com.tar / ftp.mactech.com / machack / Hacks97 / WarriorsProgress.sit / Warrior’s Progress / source code / Source / Libraries / Events / Event Classes / User Events / Keyboard Events / KeyUpEvent.h < prev    next >
Text File  |  1997-06-28  |  239b  |  19 lines

  1. // KeyUpEvent.h
  2.  
  3. #ifndef KeyUpEvent_h
  4. #define KeyUpEvent_h
  5.  
  6. #ifndef KeyEvent_h
  7. #include "KeyEvent.h"
  8. #endif
  9.  
  10. class KeyUpEvent: public KeyEvent
  11.   {
  12.     public:
  13.         KeyUpEvent( const EventRecord& event )
  14.             : KeyEvent( event )
  15.             {}
  16.   };
  17.  
  18. #endif
  19.